home *** CD-ROM | disk | FTP | other *** search
/ The Complete Interactive…ermaid's Special Edition) / The Complete Interactive Cookbook - Mermaid's Special Edition [Compton's, 1999].iso / TOURGUID / COOKTG.DIR / 00016_Script_16 < prev    next >
Text File  |  1996-10-29  |  501b  |  19 lines

  1. on pauseDemo
  2.   global pauseSprite, gPaused
  3.   set the puppet of sprite pauseSprite = TRUE
  4.   set the castnum of sprite pauseSprite = the number of cast "ContinueButton"
  5.   updatestage
  6.   set gPaused = TRUE
  7.   set gContinued = FALSE
  8.   pause
  9. end
  10.  
  11. on continueDemo
  12.   global pauseSprite, gPaused
  13.   set the puppet of sprite pauseSprite = TRUE
  14.   set the castnum of sprite pauseSprite = the number of cast "PauseButton"
  15.   updatestage
  16.   set gPaused = FALSE
  17.   set gContinued = TRUE
  18.   continue
  19. end